home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-in_the_mag-
/
reader_requests
/
scilab
/
man
/
man-part1
/
cat8
/
lcm.8
< prev
next >
Wrap
Text File
|
1999-09-16
|
529b
|
67 lines
lcm(8) Scilab Function lcm(8)
NAME
lcm - least common multiple
CALLING SEQUENCE
[pp,fact]=lcm(p)
PARAMETERS
p :
fact : polynomial vector
pp : polynomial
DESCRIPTION
pp=lcm(p) computes the lcm pp of polynomial vector p.
[pp,fact]=lcm(p) computes in addition the vector fact such that:
p.*fact=pp*ones(p)
EXAMPLE
s=poly(0,'s');
p=[s,s*(s+1)^2,s^2*(s+2)];
[pp,fact]=lcm(p);
p.*fact, pp
SEE ALSO
gcd, bezout